home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / lisp / stk-3.002 / stk-3 / STk-3.1 / Tk / generic / tkPort.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-31  |  717 b   |  37 lines

  1. /*
  2.  * tkPort.h --
  3.  *
  4.  *    This header file handles porting issues that occur because of
  5.  *    differences between systems.  It reads in platform specific
  6.  *    portability files.
  7.  *
  8.  * Copyright (c) 1995 Sun Microsystems, Inc.
  9.  *
  10.  * See the file "license.terms" for information on usage and redistribution
  11.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12.  *
  13.  * SCCS: @(#) tkPort.h 1.7 96/02/11 16:42:10
  14.  */
  15.  
  16. #ifndef _TKPORT
  17. #define _TKPORT
  18.  
  19. #ifndef _TK
  20. #include "tk.h"
  21. #endif
  22. #ifndef _TCL
  23. #include "tcl.h"
  24. #endif
  25.  
  26. #if defined(__WIN32__) || defined(_WIN32)
  27. #   include "tkWinPort.h"
  28. #else
  29. #   if defined(MAC_TCL)
  30. #    include "tkMacPort.h"
  31. #   else
  32. #    include "../unix/tkUnixPort.h"
  33. #   endif
  34. #endif
  35.  
  36. #endif /* _TKPORT */
  37.